home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 4 / FM Towns Free Software Collection 4 - Disc 1.iso / t_os / border / source / cons.h next >
Encoding:
C/C++ Source or Header  |  1991-10-19  |  628 b   |  33 lines

  1. #ifdef    iskanji
  2.     #undef iskanji
  3. #endif
  4.  
  5. #ifdef    iskanji2
  6.     #undef iskanji2
  7. #endif
  8.  
  9. #define    ISKAN1    1
  10. #define    ISKAN2    2
  11.  
  12. #ifdef iskanji
  13. #define    iskanji(c)    (kantbl[(unsigned char)c]&ISKAN1)
  14. #define    iskanji2(c)    (kantbl[(unsigned char)c]&ISKAN2)
  15. #endif
  16.  
  17. int    kbhit(void);
  18. int    getch(void);
  19.  
  20. void    cflush(void);
  21. void    *wind(int x1,int y1,int x2,int y2,
  22.           int col,int bak,int cur,
  23.           int fx,int fy,int stl);
  24. void    locate(int x,int y);
  25. void    color(int col);
  26. void    putch(char ch);
  27. void    cputs(char *str);
  28. void    cprintf(char *form,...);
  29. void    cur_dsp(short);
  30. void    putstr();
  31. void    putsys();
  32. void    putmode();
  33.